home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-191.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  74 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12496);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2004-0398");
  13.  
  14.  name["english"] = "RHSA-2004-191: cadaver";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   An updated cadaver package is now available that fixes a vulnerability in
  21.   neon which could be exploitable by a malicious DAV server.
  22.  
  23.   cadaver is a command-line WebDAV client that uses inbuilt code from neon,
  24.   an HTTP and WebDAV client library.
  25.  
  26.   Stefan Esser discovered a flaw in the neon library which allows a heap
  27.   buffer overflow in a date parsing routine. An attacker could create
  28.   a malicious WebDAV server in such a way as to allow arbitrary code
  29.   execution on the client should a user connect to it using cadaver. The
  30.   Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned
  31.   the name CAN-2004-0398 to this issue.
  32.  
  33.   Users of cadaver are advised to upgrade to this updated package, which
  34.   contains a patch correcting this issue.
  35.  
  36.   This issue does not affect Red Hat Enterprise Linux 3.
  37.  
  38.  
  39.  
  40.  
  41. Solution : http://rhn.redhat.com/errata/RHSA-2004-191.html
  42. Risk factor : High';
  43.  
  44.  script_description(english:desc["english"]);
  45.  
  46.  summary["english"] = "Check for the version of the cadaver packages";
  47.  script_summary(english:summary["english"]);
  48.  
  49.  script_category(ACT_GATHER_INFO);
  50.  
  51.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  52.  family["english"] = "Red Hat Local Security Checks";
  53.  script_family(english:family["english"]);
  54.  
  55.  script_dependencies("ssh_get_info.nasl");
  56.  
  57.  script_require_keys("Host/RedHat/rpm-list");
  58.  exit(0);
  59. }
  60.  
  61. include("rpm.inc");
  62. if ( rpm_check( reference:"cadaver-0.22.1-1.0", release:"RHEL2.1") )
  63. {
  64.  security_hole(0);
  65.  exit(0);
  66. }
  67.  
  68. if ( rpm_exists(rpm:"cadaver-", release:"RHEL2.1") )
  69. {
  70.  set_kb_item(name:"CAN-2004-0398", value:TRUE);
  71. }
  72.  
  73. set_kb_item(name:"RHSA-2004-191", value:TRUE);
  74.